DeserializeObject<T>(String,JsonSetting) Method
Deserializes the JSON to the specified .NET type using
JsonSetting.
'Declaration
Public Overloads Shared Function DeserializeObject(Of )( _
ByVal As String, _
Optional ByVal As JsonSetting _
) As
public static DeserializeObject<>(
string ,
JsonSetting
)
Parameters
- strJson
- The object to deserialize.
- js
- The JsonSetting used to deserialize the object. If this is null, default serialization settings will be used.
Type Parameters
- T
- The type of the object to deserialize to.
Return Value
The deserialized object from the JSON string.